home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / gnu / bison_1_22.lha / bison-1.22 / lex.ch < prev    next >
Text File  |  1995-01-20  |  689b  |  41 lines

  1. Changes for LEX.C by Andreas Scherer, January 20, 1995.
  2.  
  3. @x l.28
  4. #include <stdio.h>
  5. #include <ctype.h>
  6. #include "system.h"
  7. #include "files.h"
  8. #include "symtab.h"
  9. #include "lex.h"
  10. #include "new.h"
  11. @y
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <ctype.h>
  15. #include "system.h"
  16. #include "files.h"
  17. #include "symtab.h"
  18. #include "lex.h"
  19. #include "ansinew.h"
  20.  
  21. extern bucket * getsym(char *);
  22. @z
  23.  
  24. @x l.40
  25. int parse_percent_token();
  26.  
  27. extern void fatals();
  28. extern void fatal();
  29. @y
  30. void init_lex(void);
  31. int skip_white_space(void);
  32. void unlex(int);
  33. int lex(void);
  34. int parse_percent_token(void);
  35.  
  36. static char *grow_token_buffer(char *);
  37.  
  38. extern void fatals(char *,...);
  39. extern void fatal(char *);
  40. @z
  41.